Remarks
Remarks
 
Parameters: NONE
Returns: NONE
 

      Remarks allow you to add comments your programs. Since comments are ignored by the compiler, we can use remarks to provide a better description of what our program is doing.

      PlayBASIC supports single line remarks and block remarks. Block remarks consist of keywords or symbol pairs that indicate the start and the end of a comment block.


The following keywords and symbols are used to remark your code:


Single Line Remarks


     Rem

     ;

     '

     `

     //




Block Remarks


     RemStart ... RemEnd

     /* ... */


 
Example Source: Download This Example
; ---------------------------------------------------------------------
;  DIM EXAMPLE..
;  ==============
;  This Program creates an ARRAY using DIM then stores and display
;  this information on the screen.
;---------------------------------------------------------------------
  
;  Dimension an Array Called "Scores" . This array can hold 6
; elements, ranging from 0 through To 5.
  Dim Scores(5)
  
  
; Store the value 1000 in our Scores array at Element #1
  Scores(1= 1000
  
; Store the value 3000 in our Scores array at Element #2
  Scores(2= 3000
  
; Store the value 5000 in our Scores array at Element #3
  Scores(3= 5000
  
; Store the value 10000 in our Scores array at Element #4
  Scores(4= 10000
  
; Store the value 50000 in our Scores array at Element #5
  Scores(5= 50000
  
  
; Create a Loop that will count the LP variable from 1 to 5
  For lp=1 To 5
   ; Print the value stored in score array, using the LP
   ; variable As the elements index.
     Print Scores(lp)
  Next lp
  
  
; Display a Message on the screen.  Showing the user, the program is
; waiting For input.
  Print "Press Any Key"
  
; Tell Play Basic To Display the Screen now.
  Sync
  
; Wait For the user to press a key
  WaitKey
  
 
Related Info: #If | Rem | RemStart :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com